提出问题:widget能实现什么功能?
显示右侧博文:
1、首先在Home目录下新建Widget文件夹,之后建立对应文件
2、拿最热Hot新闻来举例:
在Tpl目录下Common公共文件夹里的right.html文件,用来显示右侧博文。
在其中写上热门新闻的工具代码:
<{:W('Hot', array('limit'=>5))}>
所有的代码:
3、对应的HotWidget.class.php代码:
field('id', 'name', 'click')->order('clickDESC')->limit($limit)->select(); return $this->renderFile('', $data); }}
4、对应的Hot文件夹下的Hot.html:代码:
- 热门博文
- <{ $v.title}> (<{ $v.click}>)
完。